Skip to content

Instantly share code, notes, and snippets.

/*
* Module Name:
* WorkingSetWatch.cpp
*
* Abstract:
* Tracks page faults that occur within the process.
*
* NOTE: This is not compatible with Wow64 and must be run as a 64-bit
* program on x64 and a 32-bit program on x86.
*

If .DS_Store was never added to your git repository, simply add it to your .gitignore file.

If you don't have one, create a file called

.gitignore

In your the root directory of your app and simply write

@peterwsetter
peterwsetter / side-by-side-tables.Rmd
Last active May 9, 2024 04:50
Side-by-side Tables in Rmarkdown
---
output: pdf_document
---
```{r results='asis', echo=FALSE}
# Setting `results = 'asis'` allows for using Latex within the code chunk
cat('\\begin{center}')
# `{c c}` Creates a two column table
# Use `{c | c}` if you'd like a line between the tables
cat('\\begin{tabular}{ c c }')
print(knitr::kable(mtcars[1:5, 1:5], format = 'latex'))
@salhernandez
salhernandez / InstallingMeld.md
Last active May 9, 2024 04:49 — forked from kjlubick/InstallingMeld
How to install Meld on Windows and getting it set up with Git

Install Meld from their webpage http://meldmerge.org/

I had to tell git where it was:

git config --global merge.tool meld git config --global diff.tool meld

If using windows 8 and 10 use the following git config --global mergetool.meld.path "/c/Program Files (x86)/meld/meld.exe" git config --global difftool.meld.path "/c/Program Files (x86)/meld/meld.exe"

@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active May 9, 2024 04:48
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@paulcc
paulcc / gist:3799331
Created September 28, 2012 11:43
list of four-letter words to go with https://gist.github.com/3733182
aahs
abbe
abbr
abed
abet
able
ably
abut
acct
aced
@MichaelCurrin
MichaelCurrin / README.md
Last active May 9, 2024 04:40
Recommended VS Code extensions

Recommended VS Code extensions

Extensions I use or want to use in VS Code.

I add links and explanations so you can use them too if you want.

Language and tool-specific support

Such as syntax highlighting and linting.

@naosim
naosim / phaser_group.js
Created August 15, 2015 02:07
PhaserでGroupを使う
var game = new Phaser.Game(400, 490, Phaser.AUTO, 'phaser-area');
var player;
var coinGroup;
var cursors;
var playerSpeed = 3;
game.state.add('main', {
preload: function() {
game.stage.backgroundColor = '#ffffdd';
game.load.image('player', '../../common/img/buta2.png');
game.load.image('coin', '../../common/img/coin.png');
CREATE OR REPLACE FUNCTION base36_decode(IN base36 varchar)
RETURNS bigint AS $$
DECLARE
a char[];
ret bigint;
i int;
val int;
chars varchar;
BEGIN
chars := '0123456789abcdefghijklmnopqrstuvwxyz';
@OnniSaarni
OnniSaarni / fikaserver.md
Last active May 9, 2024 04:36
SPT AKI Fika Server With Docker Ubuntu/Debian